home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000390_news@columbia.edu_Sun Dec 11 04:40:27 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26787
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 11 Dec 1994 13:02:08 -0500
  3. Received: by apakabar.cc.columbia.edu id AA03825
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 11 Dec 1994 13:02:07 -0500
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: 3.14 beta 14 and PC/TCP
  9. Message-Id: <1994Dec11.104027.35139@cc.usu.edu>
  10. Date: 11 Dec 94 10:40:27 MDT
  11. References: <D0n8CD.Gn8@adasoft.ch>
  12. Organization: Utah State University
  13. Lines: 36
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <D0n8CD.Gn8@adasoft.ch>, jw@adasoft.ch (Jamie Watson) writes:
  17. > I must be doing something wrong, but I can't figure out what...
  18. > I am trying to use 3.14 Beta-14 with FTP Software PC/TCP 3.0 to connect
  19. > from my laptop to my Unix system.  The laptop is a Toshiba 1950CS, with
  20. > a Xircom PCMCIA ethernet adapter.  The Unix system is a DECsystem 5000/50,
  21. > running Ultrix 4.4.
  22. > When I first start the system, I can reach the Ultrix system with all of
  23. > the normal PC/TCP utilities (ping, tn, rlogin, etc).  I then start kermit,
  24. > and give it what I think are the minimum configuration commands to get it
  25. > working over TCP/IP:
  26. >     set tcp addr 193.72.200.10
  27. >     set tcp host 193.72.200.7
  28. >     con
  29. > It connects, and everything seems just fine.  But after I log out, and
  30. > terminate kermit, none of the PC/TCP utilities work any more!  If I try
  31. > to ping the Unix system, I get "ARP failed", and nothing I have tried can
  32. > get this working again, short of rebooting the laptop.  But if I start
  33. > kermit again, I can still connect to the Unix system!  I'm really very
  34. > confused...
  35. --------------
  36.     The situation is easy to clarify. SET PORT TCP in Kermit means
  37. to use Kermit's internal TCP/IP stack. That stack requires either a suitable
  38. Packet Driver or ODI to talk to the lan adapter. FTP Inc's stack does more
  39. or less the same thing. You loaded FTP Inc's stack and then told Kermit to
  40. go to the same board and grab it; you are not running "over FTP Inc's stack."
  41. I'm surprized that you we able to run Kermit over the board with FTP still
  42. using all the TCP/IP material. 
  43.     If you want FTP Inc's stack to remain resident and run Kermit
  44. over the top of it you must use FTP's TNGLASS program, and tell Kermit
  45. SET PORT BIOS1.
  46.     Joe D.